There is 2 ways to get BDA tuner filter name from DVB Dream.

1) Option to use from any DD Module (*.mod) or MDAPI plugin (*.dll)
DDMODAPI_GET_DEVICE_INFO
This function returns the device related information which DD currently works on.
when it is called, it fills up the  TGDeviceInfo structure given in LParam  as a pointer.
This is a DD ModuleAPI function but ofcourse possible to in MDAPI plugin.

Example:
	...
	...
	TGDeviceInfo devinfo;
	SendMessage(fmain.Handle, WM_MODULE_MSG, DDMODAPI_GET_DEVICE_INFO, (LPARAM)&devinfo);
		
	printf(devinfo.TunerName); // this is BDA Tuner Filter Name
	...
	...

2) Option to use from any DD Module (*.mod)
with the version DD v1.5g , TInitInfo structure has been changed to contaion BDA Tuner Filter Name.
This structure is sent to module during the module initalization, as a parameter to OnInit() function.

Please refer to new ModuleAPI.h or ModuleAPI.pas header file to see new structures and definations.

You can ask for more information in the www.dvbdream.org forums